home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1999 Spring / macformat-077.iso / Shareware Plus / Development / SpriteWorld 2.2 / SpriteWorld Examples / Simple / Simple.h < prev    next >
Encoding:
Text File  |  1997-02-12  |  677 b   |  36 lines  |  [TEXT/CWIE]

  1. ///--------------------------------------------------------------------------------------
  2. // Simple.h
  3. //
  4. // By: Tony Myles
  5. //
  6. // Copyright © 1993 Tony Myles, All rights reserved worldwide.
  7. ///--------------------------------------------------------------------------------------
  8.  
  9.  
  10. #ifndef __SIMPLE__
  11. #define __SIMPLE__
  12.  
  13. #ifndef __WINDOWS__
  14. #include <Windows.h>
  15. #endif
  16.  
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. void    CreateWindow(void);
  23. void    SetUpSpriteWorld(void);
  24. void    CreateBallSprite(void);
  25. void    AddSprites(void);
  26. void    RunAnimation(void);
  27. void    CleanUp(void);
  28.  
  29. SW_FUNC void    BallSpriteMoveProc(SpritePtr ballSpriteP);
  30.  
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34.  
  35.  
  36. #endif /* __APPLICATION__ */